home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / nortutil.zip / src / Spew / Makefile < prev    next >
Makefile  |  1996-08-28  |  194b  |  12 lines

  1. # Simple Makefile for spew
  2.  
  3. HEADLNS = \"/usr/games/headline\"
  4.  
  5. CFLAGS = -O -DDEFFILE=$(HEADLNS)
  6.  
  7. spew:    spew.c
  8.     cc $(CFLAGS) -o spew spew.c
  9.  
  10. install: spew
  11.     cp spew headline /usr/games
  12.